:root {
    --dark-color: #B04784;
    --light-color: #FC6A99;
  }

  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }

  .navbar {
    background-color: #dbdbdb;
    border-bottom: 0.5px solid #000;
    width: 100%;
    line-height: 80px;
    height: 80px;
    font-size: 18;
    padding: 0 30px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    font-family: 'Segoe UI';
  }

  .navbar a{
    text-decoration: none;
    color: #000;
  }

  .navbar a.nav-Logo{
    float: left;
    height: inherit;
    line-height: inherit;
    padding: 0 30px;
    font-size: 40;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Segoe UI';
    font-weight: bold;
    color: #000;
  }

  .navbar ul {
    float: right;
    list-style: none;
    height: inherit;
    line-height: inherit;
    padding: 0 50px;
  }

  .navbar ul li{
    display: inline-table;
  }

  .navbar ul li a {
    display: block;
    text-align: center;
    min-width: 120px;
    padding: 0 30px;
  }

  .navbar ul li a:hover{
    background-color: gray;
    transition: 0.25s;
  }

  body{
    background-color: #dbdbdb;
  }

  .content {
    font-family: 'Segoe UI';
    color: #000;
    margin-top: 30%;
    margin-left: 100px;     
    margin-bottom: 0%; 
  }

  h1 {
    font-size: 70px;
  }
  p {
    margin-top: 10px;
  }
  main{
    display: grid;
    grid-template-columns: 40% 60%;
  }

  .btns {
    margin-top: 40px;
    background-color: gray;
    cursor: pointer;
    color: #dbdbdb;
    padding: 12px 20px;
    float: left;
    border: 0;
    border-radius: 20px;
    margin-left: 10px;
  }

  .btns:hover{
    background: #F1638F;
    transition: 0.25s;
  }

  img{
    margin-top: 30%;
    margin-left: 175px;
    width: 400px;
    filter: grayscale(1);
  }

  img:hover{
    filter: grayscale(0);
    transition: 1s;
    cursor: pointer;
  }

  html, body {
    max-width: 100%;
    min-width: 30cm;
    overflow-x: hidden;
  }